home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gnugo1_1.lha / gnugo / Makefile < prev    next >
Makefile  |  1989-03-07  |  450b  |  19 lines

  1. # program to play the game of Go (Wei-Chi)
  2.  
  3. SRC = count.c countlib.c endgame.c eval.c exambord.c findcolr.c \
  4.       findnext.c findopen.c findpatn.c findsavr.c findwinr.c \
  5.       fioe.c genmove.c getij.c getmove.c initmark.c main.c matchpat.c \
  6.       opening.c openregn.c random.c seed.c sethand.c \
  7.       showbord.c showinst.c suicide.c
  8.  
  9. PRG = gnugo
  10.  
  11. OBJ = $(SRC:.c=.o)
  12.  
  13. CFLAGS = -O
  14.  
  15. $(PRG) : $(OBJ)
  16.     $(LINK.c) $(OBJ) -o $@
  17.  
  18. matchpat.o : patterns.c
  19.